home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / O Boy / Source / debug.h < prev    next >
Encoding:
Text File  |  1996-06-21  |  149 b   |  8 lines  |  [TEXT/R*ch]

  1. // debug.h
  2. // #define DEBUG
  3. #ifdef DEBUG
  4.     #define dassert( inCond )     {if( ! (inCond) ) Debugger();}
  5. #else
  6.     #define dassert(assCond)    ((void)0)
  7. #endif
  8.